home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 February
/
EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso
/
earcd
/
patches
/
csfix.lha
/
csfix
/
Source
/
defs.h
< prev
next >
Wrap
Text File
|
1994-11-20
|
323b
|
12 lines
typedef unsigned char BOOL;
typedef unsigned char BYTE;
#define FALSE 0
#define TRUE 1
#define NOT !
#define repeat do
#define until(cond) while(NOT(cond))
#define BLANK ' ' /* space */
#define EOS '\0' /* end of string */
#define STREQ(s1,s2) (strcmp(s1,s2) == 0)
#define NULLSTR(s) (s[0] == EOS)
#define ODD(n) (n & 1)